home *** CD-ROM | disk | FTP | other *** search
/ Palm Utilities / Palm_Utilities_CD-ROM_2001_2001.iso / files / pim / Hot Date 1.3e / hotdate.exe / hotdate / start.c < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-06  |  265 b   |  13 lines

  1. /*
  2.  * This is part of a technique to allow more than 32K code segment size with
  3.  * gcc.  As described by:
  4.  * http://www.geocities.com/SiliconValley/Lab/9981/gcctech.htm
  5.  */
  6.  
  7. extern unsigned long start();
  8.  
  9. unsigned long myStart()
  10. {
  11.     return start();
  12. }
  13.